home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Texteditors / Origami / Sources / src / lib / bregex.conf < prev    next >
Encoding:
Text File  |  1996-09-27  |  733 b   |  28 lines

  1. /*{{{}}}*/
  2. /*{{{  define P for ansi-C*/
  3. #define P(args) args
  4. /*}}}  */
  5. /*{{{  not read in origami sources, only bregex.c must know these externals from origami!*/
  6. #ifdef LIB_COMPILE
  7.   /*{{{  set abort variable*/
  8. #  define RE_ABORT_EXPR aborted
  9.   extern int aborted;
  10.   /*}}}  */
  11.   /*{{{  maybe define malloc using a rounded paket size*/
  12. #  include "lib/ori_add_lib.h"
  13. #  define reg_realloc(p,x) ORIrealloc(p,x)
  14. #  define reg_malloc(x) ORImalloc(x)
  15. #  define reg_free(x) ORIfree(x)
  16.   /*}}}  */
  17. #endif
  18. /*}}}  */
  19. /*{{{  configure the regular epression library*/
  20. #define RE_SUBSTR_PTR
  21. #define RE_nERROR_REPORT
  22. #define RE_nREG_NEWLINE
  23. #define RE_nCONCUR_COMPILE
  24. #define RE_SMALL_JUMP_TABLE
  25. #define RE_NSUBMAX
  26. #define RE_EMPTY_OR
  27. /*}}}  */
  28.